home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual 53
/
PC Actual CD 53.iso
/
Share
/
Progra
/
python
/
BeOpen-Python-2.0.exe
/
TEST_WINSOUND.PY
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-09-28
|
210 b
|
8 lines
# Ridiculously simple test of the winsound module for Windows.
import winsound
for i in range(100, 2000, 100):
winsound.Beep(i, 75)
print "Hopefully you heard some sounds increasing in frequency!"